Feature Orchestrator Plugin: Commands (4/5), Fixes AB#3545056#404
Merged
Feature Orchestrator Plugin: Commands (4/5), Fixes AB#3545056#404
Conversation
Add the portable agent plugin scaffold: - plugin.json with metadata, skill/agent/command registrations - .mcp.json with ADO MCP server configuration - hooks/state-utils.js for feature state management - hooks/hooks.json (empty, placeholder) - schemas/orchestrator-config.schema.json for config validation - README.md with plugin overview and installation instructions
Add all specialized skills for the orchestration pipeline: - codebase-researcher: Systematic codebase exploration with SharePoint support - design-author: Design spec creation with multi-source (repo + SharePoint) - design-reviewer: Inline design review comment processing - feature-planner: PBI decomposition with mandatory file paths and API signatures - pbi-creator: ADO work item creation with dependency linking - pbi-dispatcher-github: Dispatch to Copilot coding agent on GitHub repos - pbi-dispatcher-ado: Dispatch via ADO Agency (future) - pbi-dispatcher-ado-swe: Dispatch via ADO Copilot SWE (tag + assign) - pr-validator: Validate agent PRs against PBI acceptance criteria - references/pbi-template.md: Standard PBI description template
Add specialized subagent definitions: - feature-orchestrator: Main coordinator agent for the full pipeline - codebase-researcher: Research agent with context-file-first approach - design-writer: Design spec author following team template - feature-planner: PBI decomposition with quality mandates - pbi-creator: ADO work item creation agent - agent-dispatcher: Routes dispatch to GitHub or ADO based on repo host
Add prompt/command files for each pipeline stage: - feature-design: Start new feature with design spec - feature-plan: Decompose design into PBIs - feature-backlog: Create work items in ADO - feature-dispatch: Send PBIs to Copilot coding agent - feature-status: Monitor agent PR progress - feature-continue: Resume a feature from any stage - feature-pr-iterate: Review and iterate on agent PRs - setup: Interactive project configuration wizard with multi-source design doc support (git + SharePoint/OneDrive via WorkIQ)
rohitluthra
approved these changes
Mar 23, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Feature Orchestrator Plugin Part 4: Commands
Adds user-facing prompt/command files for each pipeline stage. These are invoked via /feature-orchestrator-plugin:\ in VS Code chat.
What's included
Setup highlights
The \setup\ command walks through a 10-step configuration:
Merge order
PR 4 of 5. Depends on PRs 1-3. Completes the plugin.
Fixes AB#3545056